]> dgit.raspbian.org Git - php8.4.git/commitdiff
Remove timestamps from "phar".
authorVagrant Cascadian <vagrant@reproducible-builds.org>
Tue, 25 Apr 2023 18:20:24 +0000 (11:20 -0700)
committerOndřej Surý <ondrej@debian.org>
Thu, 30 Jul 2026 15:17:04 +0000 (17:17 +0200)
Thanks to Jelle van der Waa!

https://gist.github.com/jelly/96847934239aac19c512c54ca65d6baa

Gbp-Pq: Name 0041-Remove-timestamps-from-phar.patch

ext/phar/phar.c
ext/phar/util.c

index 7e74de782ccbf944acd1d47e3e7e7748a67b549b..21caf1c642886c8a0fd46222d42022801b66460a 100644 (file)
@@ -2942,7 +2942,7 @@ int phar_flush_ex(phar_archive_data *phar, zend_string *user_stub, bool is_defau
                        4: metadata-len
                        +: metadata
                */
-               mytime = time(NULL);
+               mytime = 0;
                phar_set_32(entry_buffer, entry->uncompressed_filesize);
                phar_set_32(entry_buffer+4, mytime);
                phar_set_32(entry_buffer+8, entry->compressed_filesize);
index d3bdf3d52a784bcaaddd668d8fb4fdf9f9b41da0..fb5aca46436d36f4331d62c64b3165d06abe2991 100644 (file)
@@ -730,7 +730,7 @@ phar_entry_data *phar_get_or_create_entry_data(char *fname, size_t fname_len, ch
 
        phar_add_virtual_dirs(phar, path, path_len);
        etemp.is_modified = 1;
-       etemp.timestamp = time(0);
+       etemp.timestamp = 0;
        etemp.is_crc_checked = 1;
        etemp.phar = phar;
        etemp.filename = estrndup(path, path_len);